text/template/parse.item.line (field)

12 uses

	text/template/parse (current package)
		lex.go#L19: 	line int      // The line number at the start of this item.
		parse.go#L175: 	format = fmt.Sprintf("template: %s:%d: %s", t.ParseName, t.token[0].line, format)
		parse.go#L206: 		if t.actionLine != 0 && t.actionLine != token.line {
		parse.go#L385: 		t.actionLine = token.line
		parse.go#L412: 		return t.breakControl(token.pos, token.line)
		parse.go#L414: 		return t.continueControl(token.pos, token.line)
		parse.go#L431: 	return t.newAction(token.pos, token.line, t.pipeline("command", itemRightDelim))
		parse.go#L469: 	pipe = t.newPipeline(token.pos, token.line, nil)
		parse.go#L630: 		return t.newElse(peek.pos, peek.line)
		parse.go#L633: 	return t.newElse(token.pos, token.line)
		parse.go#L663: 	return t.newTemplate(token.pos, token.line, name, pipe)
		parse.go#L682: 	return t.newTemplate(token.pos, token.line, name, pipe)